home *** CD-ROM | disk | FTP | other *** search
- #import <objc/Object.h>
-
- //
- // here are definitions of the
- // defaults database flags character
- // positions, i.e. the index of the
- // character in NuFlags
- #define BACKUPRTF 0
- #define DEBUGFILES 1
- #define MULTIPLECLASSWINDOWS 2
-
- @interface PrefsManager: Object
- { id // the preferences view
- prefView,
- // default path
- NuPath,
- // default font and size
- NXFont, NXFontSize,
- // classmanager and workspace behavior
- manyOne, backupRTF,
- // classmanager formatting:
- // importText, atText, methodText,
- // commentText, otherText
- classText0, classText1,
- classText2, classText3, classText4,
- // compile and link parameters
- compilerOptions, linkBrowser,
- linkList, debugFile,
- // need to change behavior of class text scroll object
- classTextScroller ;
- }
-
- - (int)browser:sender fillMatrix:matrix inColumn:(int)column ;
- - browser:sender loadCell:cell atRow:(int)row inColumn:(int)column ;
- - changePref: sender ;
- - linkAdd: sender ;
- - linkList ;
- - linkRemove: sender ;
- - setDefaults: sender ;
- - setNuPath ;
-
- @end